From: GNU Libc Maintainers Date: Mon, 27 Apr 2026 20:09:22 +0000 (+0200) Subject: unsubmitted-quiet-ldconfig X-Git-Tag: archive/raspbian/2.41-12+rpi1+deb13u3^2~27 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=b63d46e3cf6a5fd92f5cdf9c021985da3c666874;p=glibc.git unsubmitted-quiet-ldconfig Gbp-Pq: Topic i386 Gbp-Pq: Name unsubmitted-quiet-ldconfig.diff --- diff --git a/sysdeps/x86/readelflib.c b/sysdeps/x86/readelflib.c index acb25d710..f036eee60 100644 --- a/sysdeps/x86/readelflib.c +++ b/sysdeps/x86/readelflib.c @@ -46,8 +46,11 @@ process_elf_file (const char *file_name, const char *lib, int *flag, break; /* Fall through. */ default: - error (0, 0, _("%s is for unknown machine %d.\n"), - file_name, elf_header->e_machine); + if (opt_verbose) + { + error (0, 0, _("%s is for unknown machine %d.\n"), + file_name, elf_header->e_machine); + } return 1; }